home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / programming / other / gtlayout / source / ltp_inititext.c < prev    next >
C/C++ Source or Header  |  1999-04-19  |  526b  |  31 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1998 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. **
  7. **    :ts=4
  8. */
  9.  
  10. #ifndef _GTLAYOUT_GLOBAL_H
  11. #include "gtlayout_global.h"
  12. #endif
  13.  
  14. #include "Assert.h"
  15.  
  16. #ifdef DO_MENUS    /* Support code */
  17.  
  18.     /* LTP_InitIText(RootMenu *Root,struct IntuiText *IText):
  19.      *
  20.      *    Initialize IntuiText data structure with defaults.
  21.      */
  22.  
  23. VOID
  24. LTP_InitIText(RootMenu *Root,struct IntuiText *IText)
  25. {
  26.     IText->FrontPen        = Root->TextPen;
  27.     IText->ITextFont    = Root->TextAttr;
  28. }
  29.  
  30. #endif    /* DO_MENUS */
  31.